This is useful when you need to read a group back out of the muxer.
return NULL;
}
+GActionGroup *
+gtk_action_muxer_get_group (GtkActionMuxer *muxer,
+ const char *group_name)
+{
+ Group *group;
+
+ group = g_hash_table_lookup (muxer->groups, group_name);
+ if (group)
+ return group->group;
+
+ return NULL;
+}
+
static inline Action *
find_observers (GtkActionMuxer *muxer,
const char *action_name)
GActionGroup * gtk_action_muxer_find (GtkActionMuxer *muxer,
const char *action_name,
const char **unprefixed_name);
+GActionGroup * gtk_action_muxer_get_group (GtkActionMuxer *muxer,
+ const char *group_name);
GtkActionMuxer * gtk_action_muxer_get_parent (GtkActionMuxer *muxer);
void gtk_action_muxer_set_parent (GtkActionMuxer *muxer,